/* See https://hankchizljaw.com/wrote/a-modern-css-reset/ */
/* Box sizing rules */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap%27');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url(https://allfont.net/allfont.css?fonts=sansation-bold);
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  /* We are relaxing the `declaration-no-important` here
     because we want to ensure that code further down the
     cascade will adhere to this accessibility enhancement */
  /* stylelint-disable declaration-no-important */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.gu-mirror {
  position: absolute !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 0.8;
}
.gu-mirror.item {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 5px;
}
.gu-mirror.item.hide {
  display: none;
}
.gu-mirror.item * {
  pointer-events: none;
}
.gu-mirror.item .locked {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(109, 1, 197, 0.267);
  width: 100%;
  height: 100%;
}
.gu-mirror.item img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.gu-mirror.item p {
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  line-height: 10px;
  left: auto;
  right: auto;
  width: 100%;
  height: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 100;
}

.gu-mirror img {
  width: 100%;
}

.gu-hide {
  display: none !important;
}

.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.gu-transit {
  opacity: 0.2;
}

/*!
 * Waves v0.7.6
 * http://fian.my.id/Waves
 *
 * Copyright 2014-2018 Alfiana E. Sibuea and other contributors
 * Released under the MIT license
 * https://github.com/fians/Waves/blob/master/LICENSE */
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.waves-effect .waves-ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.1);
  background: -webkit-radial-gradient(rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 60%, rgba(255, 255, 255, 0) 70%);
  background: -o-radial-gradient(rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 60%, rgba(255, 255, 255, 0) 70%);
  background: -moz-radial-gradient(rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 60%, rgba(255, 255, 255, 0) 70%);
  background: radial-gradient(rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 60%, rgba(255, 255, 255, 0) 70%);
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
  -webkit-transform: scale(0) translate(0, 0);
  -moz-transform: scale(0) translate(0, 0);
  -ms-transform: scale(0) translate(0, 0);
  -o-transform: scale(0) translate(0, 0);
  transform: scale(0) translate(0, 0);
  pointer-events: none;
}
.waves-effect.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.2);
  background: -webkit-radial-gradient(rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 70%);
  background: -o-radial-gradient(rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 70%);
  background: -moz-radial-gradient(rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 70%);
  background: radial-gradient(rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 70%);
}
.waves-effect.waves-classic .waves-ripple {
  background: rgba(0, 0, 0, 0.2);
}
.waves-effect.waves-classic.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.4);
}

.waves-notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.waves-button,
.waves-circle {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image(): -webkit-radial-gradient(circle, white 100%, black 100%);
}

.waves-button,
.waves-button:hover,
.waves-button:visited,
.waves-button-input {
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  outline: none;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1em;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  z-index: 1;
}

.waves-button {
  padding: 0.85em 1.1em;
}

.waves-button-input {
  margin: 0;
  padding: 0.85em 1.1em;
}

.waves-input-wrapper {
  vertical-align: bottom;
}
.waves-input-wrapper.waves-button {
  padding: 0;
}
.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
}

.waves-float {
  -webkit-mask-image: none;
  -webkit-box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.waves-float:active {
  -webkit-box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
}

.waves-block {
  display: block;
}

.item-information {
  min-height: 400px;
  min-width: 415px;
  max-width: 415px;
  padding: 25px 15px 0;
}
.item-information .information-box {
  background: rgba(114, 2, 179, 0.603);
  border: 1px solid rgba(174, 0, 255, 0.5);
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@-webkit-keyframes scale-up-ver-center {
  0% {
    -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes scale-up-ver-center {
  0% {
    -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}


.item-information .information-box .title {
  margin-top: 15px;
  text-align: center;
  font-size: 15px;
  color: #eee;
  font-weight: bold;
  min-height: 3
}
.item-information .information-box input {
  outline: 0;
  border: unset;
  border-bottom: 1px solid rgba(130, 126, 126, 0.658);
  background-color: inherit;
  color: #fff;
}
.item-information .information-box .information {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  box-sizing: content-box;
}
.item-information .information-box .information img {
  width: 130px;
  height: 130px;
  text-align: center;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.item-information .information-box .information .description {
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-family: 'Poppins', sans-serif !important;
  color: #eee;
  white-space: pre-line;
}
.item-information .information-box .buttons {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-information .information-box .buttons button {
  margin-left: 1rem;
}
.item-information .information-box .buttons button:first-child {
  margin-left: 0;
}
.item-information .information-box .buttons .vuetify-btn {
  height: 36px;
  min-width: 64px;
  padding: 0 16px;
  background-color: #f5f5f5;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.87);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-appearance: button;
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 500;
  letter-spacing: 0.03em;
  justify-content: center;
  outline: 0;
  position: relative;
  text-decoration: none;
  text-indent: 0.0892857143em;
  text-transform: uppercase;
  transition-duration: 0.28s;
  transition-property: box-shadow, transform, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border-style: none;
}
.item-information .information-box .buttons .vuetify-btn.round {
  height: 36px;
  width: 36px;
  min-width: unset;
  padding: 18px;
  text-indent: unset;
}
.item-information .information-box .buttons .vuetify-btn.disabled {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.item-information .information-box .buttons .vuetify-btn .content {
  font-weight: bold;
  transition: all 0.3s;
}
.item-information .information-box .buttons .vuetify-btn .content i {
  font-size: 26px;
}
.item-information .information-box .buttons .loader {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.item-information .information-box .buttons .loader .v-progress-circular {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
.item-information .information-box .buttons .loader .v-progress-circular__info {
  align-items: center;
  display: flex;
  justify-content: center;
}
.item-information .information-box .buttons .loader .v-progress-circular > svg {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  animation: progress-circular-rotate 1.4s linear infinite;
  transform-origin: center center;
  transition: all 0.2s ease-in-out;
}
.item-information .information-box .buttons .loader .v-progress-circular > svg .v-progress-circular__overlay {
  stroke: currentColor;
  z-index: 2;
  transition: all 0.6s ease-in-out;
  animation: progress-circular-dash 1.4s ease-in-out infinite;
  stroke-linecap: round;
  stroke-dasharray: 80, 200;
  stroke-dashoffset: 0;
}
@-webkit-keyframes progress-circular-rotate {
  to {
    transform: rotate(1turn);
  }
}
@keyframes progress-circular-rotate {
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes progress-circular-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -15px;
  }
  to {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes progress-circular-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -15px;
  }
  to {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -124px;
  }
}
.item-information .information-box .buttons .btn {
  text-decoration: none;
  color: #fff;
  background-color: #26a69a;
  text-align: center;
  letter-spacing: 0.5px;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  cursor: pointer;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  text-transform: uppercase;
  border: none;
  font-size: 14px;
  outline: 0;
}

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background:rgba(115, 3, 150, 0.904);
}

blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul {
  margin: 0;
  padding: 0;
}

body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  background-size: cover;
  font-family: 'Poppins', sans-serif !important;
  background-position: center;
  background-repeat: no-repeat;
}

#wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: url("");
  align-items: center;
  justify-content: center;
}
#wrapper .header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#wrapper .logo-container {
  margin: 2rem 0;
}
#wrapper .logo-container .logo {
  width: 400px;
}
#wrapper .inventory {
  display: flex;
  justify-content: center;
  width: 80%;
  top: 50px;
  position: relative;
}
#wrapper .inventory .left-panel {
  position: relative;
  user-select: none;
}
#wrapper .inventory .left-panel .top-info {
  position: absolute;
  width: 80%;
  top: -175px;
  left: 0;
  color: #fff;
  align-self: center;
  justify-self: center;
  padding: 1rem 0;
}
#wrapper .inventory .left-panel .hotbar {
  position: absolute;
  top: -25%;
  left: -50px;
  transform: scale(0.8);
  display: flex;
}

#wrapper .inventory .left-panel .hotbar .slot:nth-child(1)::before {
  content: "1";
  font-size: 20px;
  color: rgba(255, 255, 255);
  padding-left: 30px;
  padding-top: 5px;
  position: absolute;
  transform: translateX(-50%);
}
#wrapper .inventory .left-panel .hotbar .slot:nth-child(2)::before {
  content: "2";
  font-size: 20px;
  color: rgba(255, 255, 255);
  padding-left: 30px;
  padding-top: 5px;
  position: absolute;
  transform: translateX(-50%);
}
#wrapper .inventory .left-panel .hotbar .slot:nth-child(3)::before {
  content: "3";
  font-size: 20px;
  color: rgba(255, 255, 255);
  padding-left: 30px;
  padding-top: 5px;
  position: absolute;
  transform: translateX(-50%);
}
#wrapper .inventory .left-panel .hotbar .slot:nth-child(4)::before {
  content: "4";
  font-size: 20px;
  color: rgba(255, 255, 255);
  padding-left: 30px;
  padding-top: 5px;
  position: absolute;
  transform: translateX(-50%);
}
#wrapper .inventory .left-panel .hotbar .slot:nth-child(5)::before {
  content: "5";
  font-size: 20px;
  color: rgba(255, 255, 255);
  padding-left: 30px;
  padding-top: 5px;
  position: absolute;
  transform: translateX(-50%);
}
#wrapper .inventory .right-panel {
  user-select: none;
}
#wrapper .inventory .tabs {
  height: 25px;
  display: flex;
}

#wrapper .inventory .tabs .tab {
  min-width: 100px;
  width: fit-content;
  border:1px solid hsla(0,0%,100%,.35);
  color: #fff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
  font-size: 11px;
}
#wrapper .inventory .tabs .tab .title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 5px;
}

#wrapper .inventory .tabs .tab.active {
  background: #6503b4a6;
}
#wrapper .inventory .slots {
  display: grid;
  grid-template-columns: 100px 100px 100px 100px;
  grid-gap: 0;
  max-height: 400px;
  overflow-y: scroll;
}
#wrapper .inventory .slot {
  background: rgba(116, 1, 151, 0.61);
  border: 1px solid rgba(116, 1, 151, 0.61);
  height: 100px;
  width: 100px;
}

#wrapper .inventory .slot:hover {
  -webkit-filter:brightness(150%)
}

#wrapper .inventory .slot:hover, #wrapper .inventory .slot.hover, #wrapper .inventory .slot.active {
  filter: brightness(1.05);
}
#wrapper .inventory .item {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 5px;
}
#wrapper .inventory .item.hide {
  display: none;
}
#wrapper .inventory .item * {
  pointer-events: none;
}
#wrapper .inventory .item.locked img {
  opacity: 0.3;
}
#wrapper .inventory .item.locked p {
  opacity: 0.3;
}
#wrapper .inventory .item img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  height: 100%;
  width: 100%;
}
#wrapper .inventory .item p {
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  line-height: 18px;
  left: auto;
  right: auto;
  width: 100%;
  background: #5a194921;
  height: 15px;
  overflow: hidden;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
  font-weight: 600;
  padding-left: 5px;
}